feat: Uteke memory integration (#232)#256
Merged
Merged
Conversation
Implements optional Uteke memory integration for AI-powered review memory. New: - src/engine/memory.rs — MemoryBackend with detect/recall/save/feedback - --memory flag — recall project patterns from Uteke before review - --learn flag — recall + save findings after review (implies --memory) - 11 unit tests Integration is purely additive via subprocess (uteke recall/remember CLI). Cora works 100% without Uteke — graceful degradation when not installed. Flow: cora review → standalone (default, no change) cora review --memory → recall context, enrich prompt cora review --memory --learn → recall + save findings Phase 2: inject memory_context into LLM prompt (TODO marker in main.rs) Phase 3: extract actual findings count from ReviewResult for save_findings
This was referenced Jun 11, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Implements #232 — optional Uteke memory integration for review history and learning.
New
src/engine/memory.rs— MemoryBackend with auto-detect, recall, save, feedback--memoryflag — recall project patterns from Uteke before review--learnflag — recall + save findings after review (implies --memory)Design
uteke recall/uteke rememberCLI)Flow
Phase markers (follow-up)